home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PWAIML10.ZIP / LASTCALL.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-06-17  |  995b  |  80 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     GetUser
  26.     STRING001 = PPEPath() + "lastcall.cfg"
  27.     FOpen 1, STRING001, 2, 0
  28.     FGet 1, STRING002
  29.     FGet 1, STRING003
  30.     FClose 1
  31.     FOpen 1, STRING002 + "lastcall.im", 2, 0
  32.     FWrite 1, Chr(Len(U_Name())) + U_Name() + "      ", 30
  33.     FSeek 1, 31, 0
  34.     FWrite 1, Chr(Len(U_City)) + U_City + "       ", 30
  35.     FClose 1
  36.     DispStr STRING003
  37.     Log "Minutes Used: @OPTEXT@", 0
  38.  
  39. ;------------------------------------------------------------------------------
  40. ;
  41. ; Usage report (before postprocessing)
  42. ;
  43. ; ■ Statements used :
  44. ;
  45. ;    1       Let 
  46. ;    2       FOpen 
  47. ;    2       FClose 
  48. ;    2       FGet 
  49. ;    1       GetUser
  50. ;    1       Log 
  51. ;    1       DispStr 
  52. ;    1       FSeek 
  53. ;    2       FWrite 
  54. ;
  55. ;
  56. ; ■ Functions used :
  57. ;
  58. ;    6       +
  59. ;    2       Len(
  60. ;    2       Chr()
  61. ;    2       U_Name()
  62. ;    1       PPEPath()
  63. ;
  64. ;------------------------------------------------------------------------------
  65. ;
  66. ; Analysis flags : No flag
  67. ;
  68. ;------------------------------------------------------------------------------
  69. ;
  70. ; Postprocessing report
  71. ;
  72. ;    0       For/Next
  73. ;    0       While/EndWhile
  74. ;    0       If/Then or If/Then/Else
  75. ;    0       Select Case
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;                 AEGiS Corp - Break the routines, code against the machines!
  79. ;------------------------------------------------------------------------------
  80.